home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / memory_.h < prev    next >
C/C++ Source or Header  |  1995-10-09  |  4KB  |  82 lines

  1. /* Copyright (C) 1989, 1992, 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* memory_.h */
  20. /* Generic substitute for Unix memory.h */
  21.  
  22. /* We must include std.h before any file that includes sys/types.h. */
  23. #include "std.h"
  24.  
  25. /****** Note: the System V bcmp routine only returns zero or non-zero, ******/
  26. /****** unlike memcmp which returns -1, 0, or 1. ******/
  27.  
  28. #ifdef __TURBOC__
  29. /* Define inline functions */
  30. #  ifdef __WIN32__
  31. #    define memcmp_inline(b1,b2,len) memcmp(b1,b2,len)
  32. #  else
  33. #    define memcmp_inline(b1,b2,len) __memcmp__(b1,b2,len)
  34. #  endif
  35. /* The Turbo C implementation of memset swaps the arguments and calls */
  36. /* the non-standard routine setmem.  We may as well do it in advance. */
  37. #  undef memset            /* just in case */
  38. #  include <mem.h>
  39. #  ifndef memset        /* Borland C++ can inline this */
  40. #    define memset(dest,chr,cnt) setmem(dest,cnt,chr)
  41. #  endif
  42. #else
  43.     /* Not Turbo C, no inline functions */
  44. #  define memcmp_inline(b1,b2,len) memcmp(b1,b2,len)
  45.     /* Apparently the newer VMS compilers include prototypes */
  46.     /* for the mem... routines in <string.h>.  Unfortunately, */
  47.     /* gcc lies on Sun systems: it defines __STDC__ even if */
  48.     /* the header files in /usr/include are broken. */
  49.     /* However, Solaris systems, which define __svr4__, do have */
  50.     /* correct header files. */
  51. #  if defined(VMS) || defined(_POSIX_SOURCE) || (defined(__STDC__) && (!defined(sun) || defined(__svr4__))) || defined(_HPUX_SOURCE) || defined(__WATCOMC__) || defined(THINK_C) || defined(bsdi)
  52. #    include <string.h>
  53. #  else
  54. #    if defined(BSD4_2) || defined(UTEK)
  55.      extern bcopy(), bcmp(), bzero();
  56. #     define memcpy(dest,src,len) bcopy(src,dest,len)
  57. #     define memcmp(b1,b2,len) bcmp(b1,b2,len)
  58.      /* Define our own versions of missing routines (in gsmisc.c). */
  59. #     define memory__need_memmove
  60. #        define memmove(dest,src,len) gs_memmove(dest,src,len)
  61. #        include <sys/types.h>   /* for size_t */
  62.      void *gs_memmove(P3(void *, const void *, size_t));
  63. #     define memory__need_memset
  64. #        define memset(dest,ch,len) gs_memset(dest,ch,len)
  65.      void *gs_memset(P3(void *, int, size_t));
  66. #     if defined(UTEK)
  67. #          define memory__need_memchr
  68. #          define memchr(ptr,ch,len) gs_memchr(ptr,ch,len)
  69.        const char *gs_memchr(P3(const void *, int, size_t));
  70. #        endif                /* UTEK */
  71. #    else
  72. #      include <memory.h>
  73. #      if defined(__SVR3) || defined(sun)    /* Not sure this is right.... */
  74. #     define memory__need_memmove
  75. #        define memmove(dest,src,len) gs_memmove(dest,src,len)
  76. #        include <sys/types.h>   /* for size_t */
  77.      void *gs_memmove(P3(void *, const void *, size_t));
  78. #      endif                /* __SVR3 or sun */
  79. #    endif                /* BSD4_2 or UTEK */
  80. #  endif                /* VMS, POSIX, ... */
  81. #endif                    /* !__TURBOC__ */
  82.